home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / etc / standards.info-2 (.txt) < prev    next >
GNU Info File  |  1994-10-21  |  38KB  |  1,036 lines

  1. This is Info file standards.info, produced by Makeinfo-1.55 from the
  2. input file ./standards.texi.
  3. START-INFO-DIR-ENTRY
  4. * Standards: (standards).        GNU coding standards.
  5. END-INFO-DIR-ENTRY
  6.    GNU Coding Standards Copyright (C) 1992, 1993, 1994 Free Software
  7. Foundation
  8.    Permission is granted to make and distribute verbatim copies of this
  9. manual provided the copyright notice and this permission notice are
  10. preserved on all copies.
  11.    Permission is granted to copy and distribute modified versions of
  12. this manual under the conditions for verbatim copying, provided that
  13. the entire resulting derived work is distributed under the terms of a
  14. permission notice identical to this one.
  15.    Permission is granted to copy and distribute translations of this
  16. manual into another language, under the above conditions for modified
  17. versions, except that this permission notice may be stated in a
  18. translation approved by the Free Software Foundation.
  19. File: standards.info,  Node: Using Extensions,  Next: System Functions,  Prev: Names,  Up: Top
  20. Using Non-standard Features
  21. ***************************
  22.    Many GNU facilities that already exist support a number of convenient
  23. extensions over the comparable Unix facilities.  Whether to use these
  24. extensions in implementing your program is a difficult question.
  25.    On the one hand, using the extensions can make a cleaner program.
  26. On the other hand, people will not be able to build the program unless
  27. the other GNU tools are available.  This might cause the program to
  28. work on fewer kinds of machines.
  29.    With some extensions, it might be easy to provide both alternatives.
  30. For example, you can define functions with a "keyword" `INLINE' and
  31. define that as a macro to expand into either `inline' or nothing,
  32. depending on the compiler.
  33.    In general, perhaps it is best not to use the extensions if you can
  34. straightforwardly do without them, but to use the extensions if they
  35. are a big improvement.
  36.    An exception to this rule are the large, established programs (such
  37. as Emacs) which run on a great variety of systems.  Such programs would
  38. be broken by use of GNU extensions.
  39.    Another exception is for programs that are used as part of
  40. compilation: anything that must be compiled with other compilers in
  41. order to bootstrap the GNU compilation facilities.  If these require
  42. the GNU compiler, then no one can compile them without having them
  43. installed already.  That would be no good.
  44.    Since most computer systems do not yet implement ANSI C, using the
  45. ANSI C features is effectively using a GNU extension, so the same
  46. considerations apply.  (Except for ANSI features that we discourage,
  47. such as trigraphs--don't ever use them.)
  48. File: standards.info,  Node: System Functions,  Next: Semantics,  Prev: Using Extensions,  Up: Top
  49. Calling System Functions
  50. ************************
  51.    C implementations differ substantially.  ANSI C reduces but does not
  52. eliminate the incompatibilities; meanwhile, many users wish to compile
  53. GNU software with pre-ANSI compilers.  This chapter gives
  54. recommendations for how to use the more or less standard C library
  55. functions to avoid unnecessary loss of portability.
  56.    * Don't use the value of `sprintf'.  It returns the number of
  57.      characters written on some systems, but not on all systems.
  58.    * Don't declare system functions explicitly.
  59.      Almost any declaration for a system function is wrong on some
  60.      system.  To minimize conflicts, leave it to the system header
  61.      files to declare system functions.  If the headers don't declare a
  62.      function, let it remain undeclared.
  63.      While it may seem unclean to use a function without declaring it,
  64.      in practice this works fine for most system library functions on
  65.      the systems where this really happens.  The problem is only
  66.      theoretical.  By contrast, actual declarations have frequently
  67.      caused actual conflicts.
  68.    * If you must declare a system function, don't specify the argument
  69.      types.  Use an old-style declaration, not an ANSI prototype.  The
  70.      more you specify about the function, the more likely a conflict.
  71.    * In particular, don't unconditionally declare `malloc' or `realloc'.
  72.      Most GNU programs use those functions just once, in functions
  73.      conventionally named `xmalloc' and `xrealloc'.  These functions
  74.      call `malloc' and `realloc', respectively, and check the results.
  75.      Because `xmalloc' and `xrealloc' are defined in your program, you
  76.      can declare them in other files without any risk of type conflict.
  77.      On most systems, `int' is the same length as a pointer; thus, the
  78.      calls to `malloc' and `realloc' work fine.  For the few
  79.      exceptional systems (mostly 64-bit machines), you can use
  80.      *conditionalized* declarations of `malloc' and `realloc'--or put
  81.      these declarations in configuration files specific to those
  82.      systems.
  83.    * The string functions require special treatment.  Some Unix systems
  84.      have a header file `string.h'; other have `strings.h'.  Neither
  85.      file name is portable.  There are two things you can do: use
  86.      Autoconf to figure out which file to include, or don't include
  87.      either file.
  88.    * If you don't include either strings file, you can't get
  89.      declarations for the string functions from the header file in the
  90.      usual way.
  91.      That causes less of a problem than you might think.  The newer ANSI
  92.      string functions are off-limits anyway because many systems still
  93.      don't support them.  The string functions you can use are these:
  94.           strcpy   strncpy   strcat   strncat
  95.           strlen   strcmp   strncmp
  96.           strchr   strrchr
  97.      The copy and concatenate functions work fine without a declaration
  98.      as long as you don't use their values.  Using their values without
  99.      a declaration fails on systems where the width of a pointer
  100.      differs from the width of `int', and perhaps in other cases.  It
  101.      is trivial to avoid using their values, so do that.
  102.      The compare functions and `strlen' work fine without a declaration
  103.      on most systems, possibly all the ones that GNU software runs on.
  104.      You may find it necessary to declare them *conditionally* on a few
  105.      systems.
  106.      The search functions must be declared to return `char *'.  Luckily,
  107.      there is no variation in the data type they return.  But there is
  108.      variation in their names.  Some systems give these functions the
  109.      names `index' and `rindex'; other systems use the names `strchr'
  110.      and `strrchr'.  Some systems support both pairs of names, but
  111.      neither pair works on all systems.
  112.      You should pick a single pair of names and use it throughout your
  113.      program.  (Nowadays, it is better to choose `strchr' and
  114.      `strrchr'.)  Declare both of those names as functions returning
  115.      `char *'.  On systems which don't support those names, define them
  116.      as macros in terms of the other pair.  For example, here is what
  117.      to put at the beginning of your file (or in a header) if you want
  118.      to use the names `strchr' and `strrchr' throughout:
  119.           #ifndef HAVE_STRCHR
  120.           #define strchr index
  121.           #endif
  122.           #ifndef HAVE_STRRCHR
  123.           #define strrchr rindex
  124.           #endif
  125.           
  126.           char *strchr ();
  127.           char *strrchr ();
  128.    Here we assume that `HAVE_STRCHR' and `HAVE_STRRCHR' are macros
  129. defined in systems where the corresponding functions exist.  One way to
  130. get them properly defined is to use Autoconf.
  131. File: standards.info,  Node: Semantics,  Next: Errors,  Prev: System Functions,  Up: Top
  132. Program Behavior for All Programs
  133. *********************************
  134.    Avoid arbitrary limits on the length or number of *any* data
  135. structure, including filenames, lines, files, and symbols, by allocating
  136. all data structures dynamically.  In most Unix utilities, "long lines
  137. are silently truncated".  This is not acceptable in a GNU utility.
  138.    Utilities reading files should not drop NUL characters, or any other
  139. nonprinting characters *including those with codes above 0177*.  The
  140. only sensible exceptions would be utilities specifically intended for
  141. interface to certain types of printers that can't handle those
  142. characters.
  143.    Check every system call for an error return, unless you know you
  144. wish to ignore errors.  Include the system error text (from `perror' or
  145. equivalent) in *every* error message resulting from a failing system
  146. call, as well as the name of the file if any and the name of the
  147. utility.  Just "cannot open foo.c" or "stat failed" is not sufficient.
  148.    Check every call to `malloc' or `realloc' to see if it returned
  149. zero.  Check `realloc' even if you are making the block smaller; in a
  150. system that rounds block sizes to a power of 2, `realloc' may get a
  151. different block if you ask for less space.
  152.    In Unix, `realloc' can destroy the storage block if it returns zero.
  153. GNU `realloc' does not have this bug: if it fails, the original block
  154. is unchanged.  Feel free to assume the bug is fixed.  If you wish to
  155. run your program on Unix, and wish to avoid lossage in this case, you
  156. can use the GNU `malloc'.
  157.    You must expect `free' to alter the contents of the block that was
  158. freed.  Anything you want to fetch from the block, you must fetch before
  159. calling `free'.
  160.    Use `getopt_long' to decode arguments, unless the argument syntax
  161. makes this unreasonable.
  162.    When static storage is to be written in during program execution, use
  163. explicit C code to initialize it.  Reserve C initialized declarations
  164. for data that will not be changed.
  165.    Try to avoid low-level interfaces to obscure Unix data structures
  166. (such as file directories, utmp, or the layout of kernel memory), since
  167. these are less likely to work compatibly.  If you need to find all the
  168. files in a directory, use `readdir' or some other high-level interface.
  169. These will be supported compatibly by GNU.
  170.    By default, the GNU system will provide the signal handling
  171. functions of BSD and of POSIX.  So GNU software should be written to use
  172. these.
  173.    In error checks that detect "impossible" conditions, just abort.
  174. There is usually no point in printing any message.  These checks
  175. indicate the existence of bugs.  Whoever wants to fix the bugs will have
  176. to read the source code and run a debugger.  So explain the problem with
  177. comments in the source.  The relevant data will be in variables, which
  178. are easy to examine with the debugger, so there is no point moving them
  179. elsewhere.
  180. File: standards.info,  Node: Errors,  Next: Libraries,  Prev: Semantics,  Up: Top
  181. Formatting Error Messages
  182. *************************
  183.    Error messages from compilers should look like this:
  184.      SOURCE-FILE-NAME:LINENO: MESSAGE
  185.    Error messages from other noninteractive programs should look like
  186. this:
  187.      PROGRAM:SOURCE-FILE-NAME:LINENO: MESSAGE
  188. when there is an appropriate source file, or like this:
  189.      PROGRAM: MESSAGE
  190. when there is no relevant source file.
  191.    In an interactive program (one that is reading commands from a
  192. terminal), it is better not to include the program name in an error
  193. message.  The place to indicate which program is running is in the
  194. prompt or with the screen layout.  (When the same program runs with
  195. input from a source other than a terminal, it is not interactive and
  196. would do best to print error messages using the noninteractive style.)
  197.    The string MESSAGE should not begin with a capital letter when it
  198. follows a program name and/or filename.  Also, it should not end with a
  199. period.
  200.    Error messages from interactive programs, and other messages such as
  201. usage messages, should start with a capital letter.  But they should not
  202. end with a period.
  203. File: standards.info,  Node: Libraries,  Next: Portability,  Prev: Errors,  Up: Top
  204. Library Behavior
  205. ****************
  206.    Try to make library functions reentrant.  If they need to do dynamic
  207. storage allocation, at least try to avoid any nonreentrancy aside from
  208. that of `malloc' itself.
  209.    Here are certain name conventions for libraries, to avoid name
  210. conflicts.
  211.    Choose a name prefix for the library, more than two characters long.
  212. All external function and variable names should start with this prefix.
  213. In addition, there should only be one of these in any given library
  214. member.  This usually means putting each one in a separate source file.
  215.    An exception can be made when two external symbols are always used
  216. together, so that no reasonable program could use one without the
  217. other; then they can both go in the same file.
  218.    External symbols that are not documented entry points for the user
  219. should have names beginning with `_'.  They should also contain the
  220. chosen name prefix for the library, to prevent collisions with other
  221. libraries.  These can go in the same files with user entry points if
  222. you like.
  223.    Static functions and variables can be used as you like and need not
  224. fit any naming convention.
  225. File: standards.info,  Node: Portability,  Next: User Interfaces,  Prev: Libraries,  Up: Top
  226. Portability As It Applies to GNU
  227. ********************************
  228.    Much of what is called "portability" in the Unix world refers to
  229. porting to different Unix versions.  This is a secondary consideration
  230. for GNU software, because its primary purpose is to run on top of one
  231. and only one kernel, the GNU kernel, compiled with one and only one C
  232. compiler, the GNU C compiler.  The amount and kinds of variation among
  233. GNU systems on different cpu's will be like the variation among Berkeley
  234. 4.3 systems on different cpu's.
  235.    All users today run GNU software on non-GNU systems.  So supporting a
  236. variety of non-GNU systems is desirable; simply not paramount.  The
  237. easiest way to achieve portability to a reasonable range of systems is
  238. to use Autoconf.  It's unlikely that your program needs to know more
  239. information about the host machine than Autoconf can provide, simply
  240. because most of the programs that need such knowledge have already been
  241. written.
  242.    It is difficult to be sure exactly what facilities the GNU kernel
  243. will provide, since it isn't finished yet.  Therefore, assume you can
  244. use anything in 4.3; just avoid using the format of semi-internal data
  245. bases (e.g., directories) when there is a higher-level alternative
  246. (`readdir').
  247.    You can freely assume any reasonably standard facilities in the C
  248. language, libraries or kernel, because we will find it necessary to
  249. support these facilities in the full GNU system, whether or not we have
  250. already done so.  The fact that there may exist kernels or C compilers
  251. that lack these facilities is irrelevant as long as the GNU kernel and
  252. C compiler support them.
  253.    It remains necessary to worry about differences among cpu types, such
  254. as the difference in byte ordering and alignment restrictions.  It's
  255. unlikely that 16-bit machines will ever be supported by GNU, so there
  256. is no point in spending any time to consider the possibility that an
  257. int will be less than 32 bits.
  258.    You can assume that all pointers have the same format, regardless of
  259. the type they point to, and that this is really an integer.  There are
  260. some weird machines where this isn't true, but they aren't important;
  261. don't waste time catering to them.  Besides, eventually we will put
  262. function prototypes into all GNU programs, and that will probably make
  263. your program work even on weird machines.
  264.    Since some important machines (including the 68000) are big-endian,
  265. it is important not to assume that the address of an `int' object is
  266. also the address of its least-significant byte.  Thus, don't make the
  267. following mistake:
  268.      int c;
  269.      ...
  270.      while ((c = getchar()) != EOF)
  271.              write(file_descriptor, &c, 1);
  272.    You can assume that it is reasonable to use a meg of memory.  Don't
  273. strain to reduce memory usage unless it can get to that level.  If your
  274. program creates complicated data structures, just make them in core and
  275. give a fatal error if malloc returns zero.
  276.    If a program works by lines and could be applied to arbitrary
  277. user-supplied input files, it should keep only a line in memory, because
  278. this is not very hard and users will want to be able to operate on input
  279. files that are bigger than will fit in core all at once.
  280. File: standards.info,  Node: User Interfaces,  Next: Documentation,  Prev: Portability,  Up: Top
  281. Standards for Command Line Interfaces
  282. *************************************
  283.    Please don't make the behavior of a utility depend on the name used
  284. to invoke it.  It is useful sometimes to make a link to a utility with
  285. a different name, and that should not change what it does.
  286.    Instead, use a run time option or a compilation switch or both to
  287. select among the alternate behaviors.
  288.    Likewise, please don't make the behavior of the program depend on the
  289. type of output device it is used with.  Device independence is an
  290. important principle of the system's design; do not compromise it merely
  291. to save someone from typing an option now and then.
  292.    If you think one behavior is most useful when the output is to a
  293. terminal, and another is most useful when the output is a file or a
  294. pipe, then it is usually best to make the default behavior the one that
  295. is useful with output to a terminal, and have an option for the other
  296. behavior.
  297.    Compatibility requires certain programs to depend on the type of
  298. output device.  It would be disastrous if `ls' or `sh' did not do so in
  299. the way all users expect.  In some of these cases, we supplement the
  300. program with a preferred alternate version that does not depend on the
  301. output device type.  For example, we provide a `dir' program much like
  302. `ls' except that its default output format is always multi-column
  303. format.
  304.    It is a good idea to follow the POSIX guidelines for the
  305. command-line options of a program.  The easiest way to do this is to use
  306. `getopt' to parse them.  Note that the GNU version of `getopt' will
  307. normally permit options anywhere among the arguments unless the special
  308. argument `--' is used.  This is not what POSIX specifies; it is a GNU
  309. extension.
  310.    Please define long-named options that are equivalent to the
  311. single-letter Unix-style options.  We hope to make GNU more user
  312. friendly this way.  This is easy to do with the GNU function
  313. `getopt_long'.
  314.    One of the advantages of long-named options is that they can be
  315. consistent from program to program.  For example, users should be able
  316. to expect the "verbose" option of any GNU program which has one, to be
  317. spelled precisely `--verbose'.  To achieve this uniformity, look at the
  318. table of common long-option names when you choose the option names for
  319. your program.  The table appears below.
  320.    If you use names not already in the table, please send
  321. `gnu@prep.ai.mit.edu' a list of them, with their meanings, so we can
  322. update the table.
  323.    It is usually a good idea for file names given as ordinary arguments
  324. to be input files only; any output files would be specified using
  325. options (preferably `-o').  Even if you allow an output file name as an
  326. ordinary argument for compatibility, try to provide a suitable option
  327. as well.  This will lead to more consistency among GNU utilities, so
  328. that there are fewer idiosyncracies for users to remember.
  329.    Programs should support an option `--version' which prints the
  330. program's version number on standard output and exits successfully, and
  331. an option `--help' which prints option usage information on standard
  332. output and exits successfully.  These options should inhibit the normal
  333. function of the command; they should do nothing except print the
  334. requested information.
  335. `auto-check'
  336.      `-a' in `recode'.
  337. `auto-reference'
  338.      `-A' in `ptx'.
  339. `after-date'
  340.      `-N' in `tar'.
  341. `all'
  342.      `-a' in `du', `ls', `nm', `stty', `uname', and `unexpand'.
  343. `all-text'
  344.      `-a' in `diff'.
  345. `almost-all'
  346.      `-A' in `ls'.
  347. `append'
  348.      `-a' in `etags', `tee', `time'; `-r' in `tar'.
  349. `archive'
  350.      `-a' in `cp'.
  351. `arglength'
  352.      `-l' in `m4'.
  353. `ascii'
  354.      `-a' in `diff'.
  355. `assume-new'
  356.      `-W' in Make.
  357. `assume-old'
  358.      `-o' in Make.
  359. `backward-search'
  360.      `-B' in etags.
  361. `batch'
  362.      Used in GDB.
  363. `baud'
  364.      Used in GDB.
  365. `before'
  366.      `-b' in `tac'.
  367. `binary'
  368.      `-b' in `cpio' and `diff'.
  369. `block-size'
  370.      Used in `cpio' and `tar'.
  371. `blocks'
  372.      `-b' in `head' and `tail'.
  373. `break-file'
  374.      `-b' in `ptx'.
  375. `brief'
  376.      Used in various programs to make output shorter.
  377. `bytes'
  378.      `-c' in `head', `split', and `tail'.
  379. `c++'
  380.      `-C' in `etags'.
  381. `catenate'
  382.      `-A' in `tar'.
  383.      Used in various programs to specify the directory to use.
  384. `changes'
  385.      `-c' in `chgrp' and `chown'.
  386. `classify'
  387.      `-F' in `ls'.
  388. `colons'
  389.      `-c' in `recode'.
  390. `command'
  391.      `-c' in `su'; `-x' in GDB.
  392. `compare'
  393.      `-d' in `tar'.
  394. `compress'
  395.      `-Z' in `tar'.
  396. `concatenate'
  397.      `-A' in `tar'.
  398. `confirmation'
  399.      `-w' in `tar'.
  400. `context'
  401.      Used in `diff'.
  402. `copyright'
  403.      `-C' in `ptx' and `recode'.
  404. `core'
  405.      Used in GDB.
  406. `count'
  407.      `-q' in `who'.
  408. `count-links'
  409.      `-l' in `du'.
  410. `create'
  411.      Used in `tar' and `cpio'.
  412. `cxref'
  413.      `-x' in `etags'.
  414. `date'
  415.      `-d' in `touch'.
  416. `debug'
  417.      `-d' in Make and `m4'; `-t' in Bison.
  418. `define'
  419.      `-D' in `m4'.
  420. `defines'
  421.      `-d' in Bison and `etags'.
  422. `delete'
  423.      `-D' in `tar'.
  424. `dereference'
  425.      `-L' in `chgrp', `chown', `cpio', `du', `ls', and `tar'.
  426. `dereference-args'
  427.      `-D' in `du'.
  428. `diacritics'
  429.      `-d' in `recode'.
  430. `dictionary-order'
  431.      `-d' in `look'.
  432. `diff'
  433.      `-d' in `tar'.
  434. `digits'
  435.      `-n' in `csplit'.
  436. `directory'
  437.      Specify the directory to use, in various programs.  In `ls', it
  438.      means to show directories themselves rather than their contents.
  439.      In `rm' and `ln', it means to not treat links to directories
  440.      specially.
  441. `discard-all'
  442.      `-x' in `strip'.
  443. `discard-locals'
  444.      `-X' in `strip'.
  445. `diversions'
  446.      `-N' in `m4'.
  447. `dry-run'
  448.      `-n' in Make.
  449.      `-e' in `diff'.
  450. `elide-empty-files'
  451.      `-z' in `csplit'.
  452. `entire-new-file'
  453.      `-N' in `diff'.
  454. `environment-overrides'
  455.      `-e' in Make.
  456. `eof'
  457.      `-e' in `xargs'.
  458. `epoch'
  459.      Used in GDB.
  460. `error-limit'
  461.      Used in Makeinfo.
  462. `error-output'
  463.      `-o' in `m4'.
  464. `escape'
  465.      `-b' in `ls'.
  466. `exclude-from'
  467.      `-X' in `tar'.
  468. `exec'
  469.      Used in GDB.
  470. `exit'
  471.      `-x' in `xargs'.
  472. `expand-tabs'
  473.      `-t' in `diff'.
  474. `expression'
  475.      `-e' in `sed'.
  476. `extern-only'
  477.      `-g' in `nm'.
  478. `extract'
  479.      `-i' in `cpio'; `-x' in `tar'.
  480. `faces'
  481.      `-f' in `finger'.
  482. `fast'
  483.      `-f' in `su'.
  484. `file'
  485.      `-f' in `info', Make, `mt', and `tar'; `-n' in `sed'; `-r' in
  486.      `touch'.
  487. `file-prefix'
  488.      `-b' in Bison.
  489. `file-type'
  490.      `-F' in `ls'.
  491. `files-from'
  492.      `-T' in `tar'.
  493. `fill-column'
  494.      Used in Makeinfo.
  495. `flag-truncation'
  496.      `-F' in `ptx'.
  497. `fixed-output-files'
  498.      `-y' in Bison.
  499. `follow'
  500.      `-f' in `tail'.
  501. `footnote-style'
  502.      Used in Makeinfo.
  503. `force'
  504.      `-f' in `cp', `ln', `mv', and `rm'.
  505. `format'
  506.      Used in `ls', `time', and `ptx'.
  507. `forward-search'
  508.      `-F' in `etags'.
  509. `fullname'
  510.      Used in GDB.
  511. `gap-size'
  512.      `-g' in `ptx'.
  513. `get'
  514.      `-x' in `tar'.
  515. `graphic'
  516.      `-i' in `ul'.
  517. `graphics'
  518.      `-g' in `recode'.
  519. `group'
  520.      `-g' in `install'.
  521. `gzip'
  522.      `-z' in `tar'.
  523. `hashsize'
  524.      `-H' in `m4'.
  525. `header'
  526.      `-h' in `objdump' and `recode'
  527. `heading'
  528.      `-H' in `who'.
  529. `help'
  530.      Used to ask for brief usage information.
  531. `hide-control-chars'
  532.      `-q' in `ls'.
  533. `idle'
  534.      `-u' in `who'.
  535. `ifdef'
  536.      `-D' in `diff'.
  537. `ignore'
  538.      `-I' in `ls'; `-x' in `recode'.
  539. `ignore-all-space'
  540.      `-w' in `diff'.
  541. `ignore-backups'
  542.      `-B' in `ls'.
  543. `ignore-blank-lines'
  544.      `-B' in `diff'.
  545. `ignore-case'
  546.      `-f' in `look' and `ptx'; `-i' in `diff'.
  547. `ignore-errors'
  548.      `-i' in Make.
  549. `ignore-file'
  550.      `-i' in `ptx'.
  551. `ignore-indentation'
  552.      `-S' in `etags'.
  553. `ignore-init-file'
  554.      `-f' in Oleo.
  555. `ignore-interrupts'
  556.      `-i' in `tee'.
  557. `ignore-matching-lines'
  558.      `-I' in `diff'.
  559. `ignore-space-change'
  560.      `-b' in `diff'.
  561. `ignore-zeros'
  562.      `-i' in `tar'.
  563. `include'
  564.      `-i' in `etags'; `-I' in `m4'.
  565. `include-dir'
  566.      `-I' in Make.
  567. `incremental'
  568.      `-G' in `tar'.
  569. `info'
  570.      `-i', `-l', and `-m' in Finger.
  571. `initial'
  572.      `-i' in `expand'.
  573. `initial-tab'
  574.      `-T' in `diff'.
  575. `inode'
  576.      `-i' in `ls'.
  577. `interactive'
  578.      `-i' in `cp', `ln', `mv', `rm'; `-e' in `m4'; `-p' in `xargs';
  579.      `-w' in `tar'.
  580. `jobs'
  581.      `-j' in Make.
  582. `just-print'
  583.      `-n' in Make.
  584. `keep-going'
  585.      `-k' in Make.
  586. `keep-files'
  587.      `-k' in `csplit'.
  588. `kilobytes'
  589.      `-k' in `du' and `ls'.
  590. `line-bytes'
  591.      `-C' in `split'.
  592. `lines'
  593.      Used in `split', `head', and `tail'.
  594. `link'
  595.      `-l' in `cpio'.
  596. `list'
  597.      `-t' in `cpio'; `-l' in `recode'.
  598. `list'
  599.      `-t' in `tar'.
  600. `literal'
  601.      `-N' in `ls'.
  602. `load-average'
  603.      `-l' in Make.
  604. `login'
  605.      Used in `su'.
  606. `machine'
  607.      No listing of which programs already use this; someone should
  608.      check to see if any actually do and tell `gnu@prep.ai.mit.edu'.
  609. `macro-name'
  610.      `-M' in `ptx'.
  611. `mail'
  612.      `-m' in `hello' and `uname'.
  613. `make-directories'
  614.      `-d' in `cpio'.
  615. `makefile'
  616.      `-f' in Make.
  617. `mapped'
  618.      Used in GDB.
  619. `max-args'
  620.      `-n' in `xargs'.
  621. `max-chars'
  622.      `-n' in `xargs'.
  623. `max-lines'
  624.      `-l' in `xargs'.
  625. `max-load'
  626.      `-l' in Make.
  627. `max-procs'
  628.      `-P' in `xargs'.
  629. `mesg'
  630.      `-T' in `who'.
  631. `message'
  632.      `-T' in `who'.
  633. `minimal'
  634.      `-d' in `diff'.
  635. `mode'
  636.      `-m' in `install', `mkdir', and `mkfifo'.
  637. `modification-time'
  638.      `-m' in `tar'.
  639. `multi-volume'
  640.      `-M' in `tar'.
  641. `name-prefix'
  642.      `-a' in Bison.
  643. `new-file'
  644.      `-W' in Make.
  645. `no-builtin-rules'
  646.      `-r' in Make.
  647. `no-create'
  648.      `-c' in `touch'.
  649. `no-defines'
  650.      `-D' in `etags'.
  651. `no-dereference'
  652.      `-d' in `cp'.
  653. `no-keep-going'
  654.      `-S' in Make.
  655. `no-lines'
  656.      `-l' in Bison.
  657. `no-prof'
  658.      `-e' in `gprof'.
  659. `no-sort'
  660.      `-p' in `nm'.
  661. `no-split'
  662.      Used in Makeinfo.
  663. `no-static'
  664.      `-a' in `gprof'.
  665. `no-time'
  666.      `-E' in `gprof'.
  667. `no-validate'
  668.      Used in Makeinfo.
  669. `no-warn'
  670.      Used in various programs to inhibit warnings.
  671. `node'
  672.      `-n' in `info'.
  673. `nodename'
  674.      `-n' in `uname'.
  675. `nonmatching'
  676.      `-f' in `cpio'.
  677. `nstuff'
  678.      `-n' in `objdump'.
  679. `null'
  680.      `-0' in `xargs'.
  681. `number'
  682.      `-n' in `cat'.
  683. `number-nonblank'
  684.      `-b' in `cat'.
  685. `numeric-sort'
  686.      `-n' in `nm'.
  687. `numeric-uid-gid'
  688.      `-n' in `cpio' and `ls'.
  689.      Used in GDB.
  690. `old-archive'
  691.      `-o' in `tar'.
  692. `old-file'
  693.      `-o' in Make.
  694. `one-file-system'
  695.      `-l' in `tar', `cp', and `du'.
  696. `only-file'
  697.      `-o' in `ptx'.
  698. `only-prof'
  699.      `-f' in `gprof'.
  700. `only-time'
  701.      `-F' in `gprof'.
  702. `output'
  703.      In various programs, specify the output file name.
  704. `override'
  705.      `-o' in `rm'.
  706. `owner'
  707.      `-o' in `install'.
  708. `paginate'
  709.      `-l' in `diff'.
  710. `paragraph-indent'
  711.      Used in Makeinfo.
  712. `parents'
  713.      `-p' in `mkdir' and `rmdir'.
  714. `pass-all'
  715.      `-p' in `ul'.
  716. `pass-through'
  717.      `-p' in `cpio'.
  718. `port'
  719.      `-P' in `finger'.
  720. `portability'
  721.      `-c' in `cpio' and `tar'.
  722. `prefix-builtins'
  723.      `-P' in `m4'.
  724. `prefix'
  725.      `-f' in `csplit'.
  726. `preserve'
  727.      Used in `tar' and `cp'.
  728. `preserve-environment'
  729.      `-p' in `su'.
  730. `preserve-modification-time'
  731.      `-m' in `cpio'.
  732. `preserve-order'
  733.      `-s' in `tar'.
  734. `preserve-permissions'
  735.      `-p' in `tar'.
  736. `print'
  737.      `-l' in `diff'.
  738. `print-chars'
  739.      `-L' in `cmp'.
  740. `print-data-base'
  741.      `-p' in Make.
  742. `print-directory'
  743.      `-w' in Make.
  744. `print-file-name'
  745.      `-o' in `nm'.
  746. `print-symdefs'
  747.      `-s' in `nm'.
  748. `question'
  749.      `-q' in Make.
  750. `quiet'
  751.      Used in many programs to inhibit the usual output.  *Note:* every
  752.      program accepting `--quiet' should accept `--silent' as a synonym.
  753. `quote-name'
  754.      `-Q' in `ls'.
  755. `rcs'
  756.      `-n' in `diff'.
  757. `read-full-blocks'
  758.      `-B' in `tar'.
  759. `readnow'
  760.      Used in GDB.
  761. `recon'
  762.      `-n' in Make.
  763. `record-number'
  764.      `-R' in `tar'.
  765. `recursive'
  766.      Used in `chgrp', `chown', `cp', `ls', `diff', and `rm'.
  767. `reference-limit'
  768.      Used in Makeinfo.
  769. `references'
  770.      `-r' in `ptx'.
  771. `regex'
  772.      `-r' in `tac'.
  773. `release'
  774.      `-r' in `uname'.
  775. `relocation'
  776.      `-r' in `objdump'.
  777. `rename'
  778.      `-r' in `cpio'.
  779. `replace'
  780.      `-i' in `xargs'.
  781. `report-identical-files'
  782.      `-s' in `diff'.
  783. `reset-access-time'
  784.      `-a' in `cpio'.
  785. `reverse'
  786.      `-r' in `ls' and `nm'.
  787. `reversed-ed'
  788.      `-f' in `diff'.
  789. `right-side-defs'
  790.      `-R' in `ptx'.
  791. `same-order'
  792.      `-s' in `tar'.
  793. `same-permissions'
  794.      `-p' in `tar'.
  795. `save'
  796.      `-g' in `stty'.
  797.      Used in GDB.
  798. `sentence-regexp'
  799.      `-S' in `ptx'.
  800. `separate-dirs'
  801.      `-S' in `du'.
  802. `separator'
  803.      `-s' in `tac'.
  804. `sequence'
  805.      Used by `recode' to chose files or pipes for sequencing passes.
  806. `shell'
  807.      `-s' in `su'.
  808. `show-all'
  809.      `-A' in `cat'.
  810. `show-c-function'
  811.      `-p' in `diff'.
  812. `show-ends'
  813.      `-E' in `cat'.
  814. `show-function-line'
  815.      `-F' in `diff'.
  816. `show-tabs'
  817.      `-T' in `cat'.
  818. `silent'
  819.      Used in many programs to inhibit the usual output.  *Note:* every
  820.      program accepting `--silent' should accept `--quiet' as a synonym.
  821. `size'
  822.      `-s' in `ls'.
  823. `sort'
  824.      Used in `ls'.
  825. `sparse'
  826.      `-S' in `tar'.
  827. `speed-large-files'
  828.      `-H' in `diff'.
  829. `squeeze-blank'
  830.      `-s' in `cat'.
  831. `starting-file'
  832.      Used in `tar' and `diff' to specify which file within a directory
  833.      to start processing with.
  834. `stop'
  835.      `-S' in Make.
  836. `strict'
  837.      `-s' in `recode'.
  838. `strip'
  839.      `-s' in `install'.
  840. `strip-all'
  841.      `-s' in `strip'.
  842. `strip-debug'
  843.      `-S' in `strip'.
  844. `suffix'
  845.      `-S' in `cp', `ln', `mv'.
  846. `suffix-format'
  847.      `-b' in `csplit'.
  848. `sum'
  849.      `-s' in `gprof'.
  850. `summarize'
  851.      `-s' in `du'.
  852. `symbolic'
  853.      `-s' in `ln'.
  854. `symbols'
  855.      Used in GDB and `objdump'.
  856. `synclines'
  857.      `-s' in `m4'.
  858. `sysname'
  859.      `-s' in `uname'.
  860. `tabs'
  861.      `-t' in `expand' and `unexpand'.
  862. `tabsize'
  863.      `-T' in `ls'.
  864. `terminal'
  865.      `-T' in `tput' and `ul'.
  866. `text'
  867.      `-a' in `diff'.
  868. `time'
  869.      Used in `ls' and `touch'.
  870. `to-stdout'
  871.      `-O' in `tar'.
  872. `total'
  873.      `-c' in `du'.
  874. `touch'
  875.      `-t' in Make, `ranlib', and `recode'.
  876. `trace'
  877.      `-t' in `m4'.
  878. `traditional'
  879.      `-t' in `hello'; `-G' in `m4' and `ptx'.
  880. `tty'
  881.      Used in GDB.
  882. `typedefs'
  883.      `-t' in `etags'.
  884. `typedefs-and-c++'
  885.      `-T' in `etags'.
  886. `typeset-mode'
  887.      `-t' in `ptx'.
  888. `uncompress'
  889.      `-z' in `tar'.
  890. `unconditional'
  891.      `-u' in `cpio'.
  892. `undefine'
  893.      `-U' in `m4'.
  894. `undefined-only'
  895.      `-u' in `nm'.
  896. `update'
  897.      `-u' in `cp', `etags', `mv', `tar'.
  898. `verbose'
  899.      Print more information about progress.  Many programs support this.
  900. `verify'
  901.      `-W' in `tar'.
  902. `version'
  903.      Print the version number.
  904. `version-control'
  905.      `-V' in `cp', `ln', `mv'.
  906. `vgrind'
  907.      `-v' in `etags'.
  908. `volume'
  909.      `-V' in `tar'.
  910. `what-if'
  911.      `-W' in Make.
  912. `width'
  913.      `-w' in `ls' and `ptx'.
  914. `word-regexp'
  915.      `-W' in `ptx'.
  916. `writable'
  917.      `-T' in `who'.
  918. `zeros'
  919.      `-z' in `gprof'.
  920. File: standards.info,  Node: Documentation,  Next: Releases,  Prev: User Interfaces,  Up: Top
  921. Documenting Programs
  922. ********************
  923.    Please use Texinfo for documenting GNU programs.  See the Texinfo
  924. manual, either the hardcopy or the version in the GNU Emacs Info
  925. subsystem (`C-h i').  See existing GNU Texinfo files (e.g., those under
  926. the `man/' directory in the GNU Emacs distribution) for examples.
  927.    The title page of the manual should state the version of the program
  928. which the manual applies to.  The Top node of the manual should also
  929. contain this information.  If the manual is changing more frequently
  930. than or independent of the program, also state a version number for the
  931. manual in both of these places.
  932.    The manual should document all command-line arguments and all
  933. commands.  It should give examples of their use.  But don't organize
  934. the manual as a list of features.  Instead, organize it by the concepts
  935. a user will have before reaching that point in the manual.  Address the
  936. goals that a user will have in mind, and explain how to accomplish
  937. them.  Don't use Unix man pages as a model for how to write GNU
  938. documentation; they are a bad example to follow.
  939.    The manual should have a node named `PROGRAM Invocation' or
  940. `Invoking PROGRAM', where PROGRAM stands for the name of the program
  941. being described, as you would type it in the shell to run the program.
  942. This node (together with its subnodes, if any) should describe the
  943. program's command line arguments and how to run it (the sort of
  944. information people would look in a man page for).  Start with an
  945. `@example' containing a template for all the options and arguments that
  946. the program uses.
  947.    Alternatively, put a menu item in some menu whose item name fits one
  948. of the above patterns.  This identifies the node which that item points
  949. to as the node for this purpose, regardless of the node's actual name.
  950.    There will be automatic features for specifying a program name and
  951. quickly reading just this part of its manual.
  952.    If one manual describes several programs, it should have such a node
  953. for each program described.
  954.    In addition to its manual, the package should have a file named
  955. `NEWS' which contains a list of user-visible changes worth mentioning.
  956. In each new release, add items to the front of the file and identify
  957. the version they pertain to.  Don't discard old items; leave them in
  958. the file after the newer items.  This way, a user upgrading from any
  959. previous version can see what is new.
  960.    If the `NEWS' file gets very long, move some of the older items into
  961. a file named `ONEWS' and put a note at the end referring the user to
  962. that file.
  963.    Please do not use the term "pathname" that is used in Unix
  964. documentation; use "file name" (two words) instead.  We use the term
  965. "path" only for search paths, which are lists of file names.
  966.    It is ok to supply a man page for the program as well as a Texinfo
  967. manual if you wish to.  But keep in mind that supporting a man page
  968. requires continual effort, each time the program is changed.  Any time
  969. you spend on the man page is time taken away from more useful things you
  970. could contribute.
  971.    Thus, even if a user volunteers to donate a man page, you may find
  972. this gift costly to accept.  Unless you have time on your hands, it may
  973. be better to refuse the man page unless the same volunteer agrees to
  974. take full responsibility for maintaining it--so that you can wash your
  975. hands of it entirely.  If the volunteer ceases to do the job, then
  976. don't feel obliged to pick it up yourself; it may be better to withdraw
  977. the man page until another volunteer offers to carry on with it.
  978.    Alternatively, if you expect the discrepancies to be small enough
  979. that the man page remains useful, put a prominent note near the
  980. beginning of the man page explaining that you don't maintain it and
  981. that the Texinfo manual is more authoritative, and describing how to
  982. access the Texinfo documentation.
  983. File: standards.info,  Node: Releases,  Prev: Documentation,  Up: Top
  984. Making Releases
  985. ***************
  986.    Package the distribution of Foo version 69.96 in a gzipped tar file
  987. named `foo-69.96.tar.gz'.  It should unpack into a subdirectory named
  988. `foo-69.96'.
  989.    Building and installing the program should never modify any of the
  990. files contained in the distribution.  This means that all the files
  991. that form part of the program in any way must be classified into "source
  992. files" and "non-source files".  Source files are written by humans and
  993. never changed automatically; non-source files are produced from source
  994. files by programs under the control of the Makefile.
  995.    Naturally, all the source files must be in the distribution.  It is
  996. okay to include non-source files in the distribution, provided they are
  997. up-to-date and machine-independent, so that building the distribution
  998. normally will never modify them.  We commonly include non-source files
  999. produced by Bison, Lex, TeX, and Makeinfo; this helps avoid unnecessary
  1000. dependencies between our distributions, so that users can install
  1001. whichever packages they want to install.
  1002.    Non-source files that might actually be modified by building and
  1003. installing the program should *never* be included in the distribution.
  1004. So if you do distribute non-source files, always make sure they are up
  1005. to date when you make a new distribution.
  1006.    Make sure that the directory into which the distribution unpacks (as
  1007. well as any subdirectories) are all world-writable (octal mode 777).
  1008. This is so that old versions of `tar' which preserve the ownership and
  1009. permissions of the files from the tar archive will be able to extract
  1010. all the files even if the user is unprivileged.
  1011.    Make sure that all the files in the distribution are world-readable.
  1012.    Make sure that no file name in the distribution is more than 14
  1013. characters long.  Likewise, no file created by building the program
  1014. should have a name longer than 14 characters.  The reason for this is
  1015. that some systems adhere to a foolish interpretation of the POSIX
  1016. standard, and refuse to open a longer name, rather than truncating as
  1017. they did in the past.
  1018.    Don't include any symbolic links in the distribution itself.  If the
  1019. tar file contains symbolic links, then people cannot even unpack it on
  1020. systems that don't support symbolic links.  Also, don't use multiple
  1021. names for one file in different directories, because certain file
  1022. systems cannot handle this and that prevents unpacking the distribution.
  1023.    Try to make sure that all the file names will be unique on MS-DOG.  A
  1024. name on MS-DOG consists of up to 8 characters, optionally followed by a
  1025. period and up to three characters.  MS-DOG will truncate extra
  1026. characters both before and after the period.  Thus, `foobarhacker.c'
  1027. and `foobarhacker.o' are not ambiguous; they are truncated to
  1028. `foobarha.c' and `foobarha.o', which are distinct.
  1029.    Include in your distribution a copy of the `texinfo.tex' you used to
  1030. test print any `*.texinfo' files.
  1031.    Likewise, if your program uses small GNU software packages like
  1032. regex, getopt, obstack, or termcap, include them in the distribution
  1033. file.  Leaving them out would make the distribution file a little
  1034. smaller at the expense of possible inconvenience to a user who doesn't
  1035. know what other files to get.
  1036.